DELETE
/
api
/
v1
/
dev
/
teams
/
{teamId}
/
licenses
/
{licenseKey}
curl --request DELETE \
  --url https://app.lukittu.com/api/v1/dev/teams/{teamId}/licenses/{licenseKey} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "licenseKey": "<string>",
    "deleted": true
  },
  "result": {
    "timestamp": "2023-11-07T05:31:56Z",
    "valid": true,
    "details": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

teamId
string
required

Your team's UUID. You can find this value in your team's settings on the Lukittu dashboard. Format: UUID v4.

licenseKey
string
required

The Lukittu license key to delete. Lukittu license keys always follow this format: XXXXX-XXXXX-XXXXX-XXXXX-XXXXX where X is an uppercase letter (A-Z) or a digit (0-9).

Response

200
application/json
License successfully deleted
data
object
required
result
object
required